home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / fd / creat.c < prev    next >
C/C++ Source or Header  |  1990-04-13  |  174b  |  17 lines

  1.  
  2. /*
  3.  *  CREAT.C
  4.  *
  5.  *  creat(name, prot)   (prot ignored)
  6.  */
  7.  
  8. #include <fcntl.h>
  9.  
  10. int
  11. creat(name)
  12. char *name;
  13. {
  14.     return(open(name, O_CREAT | O_TRUNC | O_RDWR, 0666));
  15. }
  16.  
  17.